/* Main container styling */
.techContainer {
    display: flex;
   
    flex-direction: column; /* Align elements vertically */
    align-items: center; /* Center content horizontally */

    background-color: #f5f5f5; /* Light background */
    height:90vh;
    padding-top:60px;
    max-width: 100%; /* Restricts container width */
   
}

/* Header styling */
.projectHeader {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    
}

/* Subtitle styling */
.siteTitles {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* Technology logos container */
#tlogos {
    display: flex;
    flex-wrap: wrap; /* Allows logos to wrap to the next line */
    gap: 20px; /* Spacing between logos */
    justify-content: center; /* Centers the logos */
    align-items: center;
}

/* Individual logo styling */
#tlogos img {
    width: 80px; /* Set a uniform size for logos */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Slightly rounded corners */

    transition: transform 0.3s, box-shadow 0.3s; /* Smooth animation */
}

/* Hover effect for logos */
#tlogos img:hover {
    transform: scale(1.1); /* Enlarge logo slightly */
    
}
